home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win9x CPU Boost 1.xpl < prev    next >
Text File  |  2001-09-01  |  2KB  |  70 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="3"
  4. "UIPATH 1"="System\Advanced Performance Settings"
  5. "UIPATH 2"="Hardware\CPU"
  6. "NAME"="Windows 9x/ME CPU Boost"
  7. "VERSION"="2.03"
  8. "OSVERSION"="10101"
  9. "LANGUAGE"="VBScript"
  10. "WARNING"="1"
  11. "TEXT 1"="Normal Priority (Default)"
  12. "TEXT 2"="Fastest Priority"
  13. "TEXT 3"="REALTIME Priority [WARNING: only for power users!]"
  14. "DESCRIPTION 1"="This setting will assign any started program the above selected priority by default."
  15. "DESCRIPTION 2"="This can speed up programs very well."
  16. "DESCRIPTION 3"="NOTE: If you system LOCKS after restarting, please start using SAFE MODE and activate the (Default) entry again."
  17. "AUTHOR"="Xteq Systems"
  18. "CONTACTURL"="http://www.xteq.com"
  19. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  20. "COMMENT 1"="Thanks to axcel216@aol.com for the tip and CptSiskoX for his help!"
  21. "COMMENT 2"="Many thanks also to Thomas Tompkins (http://www.webcom.com/highwebs/thomast/)"
  22.  
  23.  
  24. sC="HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\BIOS\"
  25. sP="HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\BIOS\CPUPriority" 'DW
  26.  
  27. Sub Plugin_Initialize 
  28.     If RegPathExists(sC) then
  29.        i=RegReadValue(sp)
  30.        if IsEmpty(i)=true then 
  31.           Call SetUIElement(1,true)
  32.        else
  33.           if i=1 then 
  34.              Call SetUIElement(2,true)
  35.           else
  36.              if i=0 then 
  37.                 Call SetUIElement(3,true)
  38.              end if
  39.           end if
  40.        end if
  41.     else
  42.        Call Disable
  43.     end if
  44.  
  45. End Sub
  46.  
  47. Sub Plugin_CheckData(ElementIndex)
  48. End Sub
  49.  
  50. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  51.  if GetUIElement(1)=true then
  52.     if RegValueExists(sP) then
  53.       Call RegDeleteValue(sp)
  54.     end if
  55.  else
  56.    if GetUIElement(2)=true then
  57.       Call RegWriteValue(sp,"1",2)
  58.    else
  59.       Call RegWriteValue(sp,"0",2)
  60.    end if
  61.  end if
  62.  
  63. End Sub
  64.  
  65. Sub Plugin_Terminate 
  66. End Sub
  67.  
  68.  
  69.  
  70.